home *** CD-ROM | disk | FTP | other *** search
/ Postcard CD: Toronto / Postcard CD: Toronto (2004).iso / mac / Mov.dxr / Internal_4_pause.ls < prev    next >
Encoding:
Text File  |  2002-01-10  |  422 b   |  19 lines

  1. global PauseSS, picsPast, soundCard
  2.  
  3. on mouseDown me
  4.   startTimer()
  5.   if PauseSS = 1 then
  6.     if soundCard = 0 then
  7.       picsPast = picsPast + 1
  8.       sprite(1).memberNum = sprite(1).memberNum + 1
  9.       sprite(2).memberNum = sprite(2).memberNum + 1
  10.     end if
  11.     set the memberNum of sprite 100 to 8
  12.   else
  13.     if PauseSS = -1 then
  14.       set the memberNum of sprite 100 to 7
  15.     end if
  16.   end if
  17.   PauseSS = -PauseSS
  18. end
  19.